.visually-hidden {
	position: absolute;
	clip: rect(0 0 0 0);
	width: 1px;
	height: 1px;
	margin: -1px
}
a {
	display: block;
	text-decoration: none;
	color: inherit
}
a:hover {
	color: inherit;
	text-decoration: none
}
*:focus, button:focus, textarea:focus, input:focus {
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none
}
img {
	width: 100%;
	height: auto
}
@font-face {
	font-family: 'Montserrat-SemiBold';
	src: url("fonts/Montserrat-SemiBold.eot");
	src: url("fonts/Montserrat-SemiBold-1.eot") format('embedded-opentype'), url("fonts/Montserrat-SemiBold.woff") format('woff'), url("fonts/Montserrat-SemiBold.ttf") format('truetype');
	font-weight: bold;
	font-style: normal
}
@font-face {
	font-family: 'Montserrat-Bold';
	src: url("fonts/Montserrat-Bold.eot");
	src: url("fonts/Montserrat-Bold-1.eot") format('embedded-opentype'), url("fonts/Montserrat-Bold.woff") format('woff'), url("fonts/Montserrat-Bold.ttf") format('truetype');
	font-weight: bold;
	font-style: normal
}
@font-face {
	font-family: 'Montserrat-Regular';
	src: url("fonts/Montserrat-Regular.eot");
	src: url("fonts/Montserrat-Regular-1.eot") format('embedded-opentype'), url("fonts/Montserrat-Regular.woff") format('woff'), url("fonts/Montserrat-Regular.ttf") format('truetype');
	font-weight: normal;
	font-style: normal
}
@font-face {
	font-family: 'Montserrat-Medium';
	src: url("fonts/Montserrat-Medium.eot");
	src: url("fonts/Montserrat-Medium-1.eot") format('embedded-opentype'), url("fonts/Montserrat-Medium.woff") format('woff'), url("fonts/Montserrat-Medium.ttf") format('truetype');
	font-weight: normal;
	font-style: normal
}
@font-face {
	font-family: 'Raleway-SemiBold';
	src: url("fonts/Raleway-SemiBold.eot");
	src: url("fonts/Raleway-SemiBold-1.eot") format('embedded-opentype'), url("fonts/Raleway-SemiBold.woff") format('woff'), url("fonts/Raleway-SemiBold.ttf") format('truetype');
	font-weight: bold;
	font-style: normal
}
body {
	font: normal 1rem/1.4 'Montserrat-Regular', sans-serif
}

@media only screen and (min-width:1200px) {
.container {
	max-width: 1280px !important
}
}

@media only screen and (min-width:1600px) {
.container {
	max-width: 1410px !important
}
}
.header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 5
}
.header.inner-page {
	position: relative;
	background-color: #f9f9f9
}
.header.inner-page .header-container {
	padding: 25px 0
}

@media only screen and (max-width:768px) {
.header {
	position: fixed;
	background-color: #f9f9f9;
	border-bottom: 1px solid #b4b4b4
}
}
.header-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 35px 0
}

@media only screen and (max-width:768px) {
.header-container {
	padding: 12px 0
}
}
.logo {
	width: 200px
}

@media only screen and (max-width:992px) {
.logo {
	width: 150px;
	margin-right: auto
}
}

@media only screen and (max-width:576px) {
.logo {
	width: 115px
}
}
.page-overlay {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.6)
}

@media only screen and (min-width:992px) {
.page-overlay {
	display: none !important
}
}
.mobile-menu-btn {
	width: 41px;
	height: 41px;
	z-index: 10;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-left: 15px;
	margin-bottom: 3px;
	background: url("../images/svg/menu.svg") no-repeat center;
	background-size: contain;
	border: none
}

@media only screen and (min-width:992px) {
.mobile-menu-btn {
	display: none
}
}
.mobile-menu-btn.active {
	position: relative;
	z-index: 20;
	background: url("../images/svg/close.svg") no-repeat center;
	background-size: contain
}

@media only screen and (max-width:545px) {
.mobile-menu-btn.active {
	position: fixed;
	right: 15px
}
}

@media only screen and (max-width:576px) {
.mobile-menu-btn {
	width: 32px;
	height: 32px
}
}
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	width: 50%;
	height: 100vh;
	padding: 100px 15px 20px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background-color: #f9f9f9;
	overflow-y: scroll;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: 0.3s 0s;
	transition: 0.3s 0s
}
.mobile-menu.active {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-box-shadow: 10px 0 30px 5px rgba(95,95,95,0.36);
	box-shadow: 10px 0 30px 5px rgba(95,95,95,0.36)
}

@media only screen and (min-width:992px) {
.mobile-menu.active {
	display: none
}
}
.mobile-menu .m-menu-block {
	padding: 25px 15px;
	margin-bottom: 30px;
	background-color: #fff;
	border: 1px solid #b4b4b4;
	border-radius: 8px
}

@media only screen and (max-width:1200px) {
.mobile-menu .contacts-block {
	margin-bottom: 15px
}
}

@media only screen and (max-width:768px) {
.mobile-menu {
	width: 60%
}
}

@media only screen and (max-width:576px) {
.mobile-menu {
	width: 100%
}
.mobile-menu .connect-btn {
	width: 200px
}
}
.mobile-menu .services-btn {
	margin: 15px !important;
	border: 1px solid redColor
}
.mobile-menu .services-btn:hover {
	border: 1px solid #ffbd3c
}
.main-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	max-width: 700px
}

@media only screen and (max-width:1200px) {
.main-navigation {
	max-width: 400px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}
}

@media only screen and (max-width:992px) {
.main-navigation {
	display: none
}
}
.main-navigation .navigation-item {
	position: relative;
	font-size: 1.125rem;
	line-height: 1.625rem
}
.main-navigation .navigation-item:before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	height: 2px;
	width: 0;
	background-color: #0c0c0c;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	opacity: 0
}
.main-navigation .navigation-item:hover:before {
	width: 100%;
	opacity: 1
}
.contact-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}
.contact-block .contact-icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 27px;
	height: 27px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	margin-right: 8px;
	fill: #19c82a
}

@media only screen and (max-width:576px) {
.contact-block .contact-icon {
	width: 22px;
	height: 22px
}
}
.contact-block .contact-text {
	font: bold 1.375rem/27px 'Montserrat-SemiBold', sans-serif
}

@media only screen and (max-width:992px) {
.contact-block .contact-text {
	font-size: 1.25rem
}
}

@media only screen and (max-width:576px) {
.contact-block .contact-text {
	font-size: 1.125rem
}
}
.contact-block.white-icon {
	fill: #fff
}
.contact-block:hover .contact-icon {
	-webkit-transform-origin: center;
	transform-origin: center;
	-webkit-transform: scale(1.1);
	transform: scale(1.1)
}
.btn {
	height: 35px;
	padding: 0 30px;
	font: bold 1rem/32px 'Montserrat-SemiBold', sans-serif;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s
}
.btn svg {
	width: 30px;
	height: 30px;
	-webkit-transition: 0.3s;
	transition: 0.3s
}
.btn:focus {
	-webkit-box-shadow: none;
	box-shadow: none
}
.btn.btn-grn {
	border: 2px solid #19c82a
}
.btn.btn-grn:hover {
	background-color: #19c82a;
	color: #fff
}
.btn.btn-blue {
	border: 2px solid #0238c1;
	background-color: #0238c1;
	color: #fff
}
.btn.btn-blue svg {
	fill: #fff
}
.btn.btn-blue:hover {
	background-color: transparent;
	color: #0c0c0c
}
.btn.btn-blue:hover svg {
	fill: #0c0c0c
}
.btn.btn-round {
	border-radius: 30px
}
.btn.btn-square {
	border-radius: 4px
}
.btn.icon-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	max-width: 100%;
	padding: 0 15px;
	line-height: 1;
	text-align: center
}
.btn.icon-btn svg {
	width: 22px;
	height: 22px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-left: 10px
}
main {
	min-height: calc(100vh - 340px)
}
.main-cover {
	position: relative;
	padding: 0;
	background-color: #f9f9f9;
	overflow: hidden
}
.main-cover .cover-pagination {
	position: absolute;
	bottom: 30px;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%
}
.main-cover .cover-pagination .swiper-pagination-bullet {
	width: 20px;
	height: 20px;
	border: 2px solid #b4b4b4;
	background-color: transparent
}
.main-cover .cover-pagination .swiper-pagination-bullet-active {
	border: 2px solid #0238c1;
	background-color: #0238c1
}

@media only screen and (max-width:768px) {
.main-cover .cover-pagination {
	display: none
}
}
.cover-swiper .cover-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100vh;
	min-height: 900px;
	max-height: 1000px
}

@media only screen and (max-width:1600px) {
.cover-swiper .cover-slide {
	min-height: 800px
}
}

@media only screen and (max-width:768px) {
.cover-swiper .cover-slide {
	height: auto;
	min-height: 700px
}
}
.cover-info {
	position: relative;
	z-index: 1;
	width: 770px;
	-ms-flex-negative: 0;
	flex-shrink: 0
}

@media only screen and (max-width:1200px) {
.cover-info {
	width: 450px
}
}

@media only screen and (max-width:992px) {
.cover-info {
	width: 50%
}
}

@media only screen and (max-width:768px) {
.cover-info {
	width: 100%;
	margin-top: 0
}
}
.cover-info .cover-title {
	font: bold 3.625rem/1 'Raleway-SemiBold', sans-serif
}
.cover-info .cover-title span {
	margin: 0 5px;
	color: #0238c1
}

@media only screen and (max-width:1600px) {
.cover-info .cover-title {
	font-size: 2.875rem
}
}

@media only screen and (max-width:768px) {
.cover-info .cover-title {
	font-size: 2rem
}
}
.cover-info .cover-btn {
	height: 60px;
	width: 330px;
	margin-top: 44px
}

@media only screen and (max-width:768px) {
.cover-info .cover-btn {
	width: 215px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	color: #0c0c0c;
	text-align: left;
	background-color: #ffbd3c;
	border-color: #ffbd3c
}
.cover-info .cover-btn svg {
	fill: #0c0c0c
}
}
.cover-image {
	position: relative;
	width: 100%;
	height: 100%
}
.cover-image .cover-bg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 810px
}

@media only screen and (max-width:1600px) {
.cover-image .cover-bg {
	left: -60px;
	width: 690px
}
}

@media only screen and (max-width:1200px) {
.cover-image .cover-bg {
	bottom: 0;
	left: 0;
	width: 750px
}
}

@media only screen and (max-width:768px) {
.cover-image .cover-bg {
	left: -150px;
	width: 480px
}
}
.cover-advantages {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 37px
}
.cover-advantages .c-advantage-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: calc(50% - 30px)
}
.cover-advantages .c-advantage-block .c-advantage-icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	margin-right: 15px
}
.cover-advantages .c-advantage-block .c-advantage-text {
	font-size: 1.125rem
}

@media only screen and (max-width:768px) {
.cover-advantages .c-advantage-block {
	display: block
}
.cover-advantages .c-advantage-block .c-advantage-icon {
	margin-bottom: 5px
}
}

@media only screen and (max-width:1200px) {
.cover-advantages {
	display: block
}
.cover-advantages .c-advantage-block {
	width: 100%;
	margin-bottom: 15px
}
}

@media only screen and (max-width:768px) {
.cover-advantages {
	width: 50%;
	min-width: 180px
}
}
.cover-scroll {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 61px;
	height: 61px;
	margin-top: 70px;
	border: 1px solid #b4b4b4;
	border-radius: 50%;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transition: 0.3s;
	transition: 0.3s
}
.cover-scroll svg {
	width: 22px;
	height: 22px;
	fill: #b4b4b4;
	-webkit-transition: 0.3s;
	transition: 0.3s
}
.cover-scroll:hover {
	background-color: #b4b4b4
}
.cover-scroll:hover svg {
	fill: #fff
}

@media only screen and (max-width:768px) {
.cover-scroll {
	display: none
}
}
section {
	padding: 75px 0
}
section.inner-page {
	padding: 15px 0 165px;
	background-color: #f9f9f9
}

@media only screen and (max-width:768px) {
section.inner-page {
	padding: 15px 0 45px
}
}
section.inner-page .section-title {
	margin-bottom: 30px
}
section .section-header {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
section .section-title {
	font: bold 4rem/1 'Raleway-SemiBold', sans-serif
}

@media only screen and (max-width:1600px) {
section .section-title {
	font-size: 2.875rem
}
}

@media only screen and (max-width:992px) {
section .section-title {
	font-size: 2.625rem
}
}

@media only screen and (max-width:576px) {
section .section-title {
	font-size: 2.125rem
}
}

@media only screen and (max-width:768px) {
section {
	padding: 30px 0
}
}
section .section-title a {
	position: relative;
	display: inline-block;
	text-decoration: underline
}
section .section-title a:before {
	content: '';
	position: absolute;
	height: 0;
	width: 100%;
	background-color: #0c0c0c;
	-webkit-transition: 0.15s;
	transition: 0.15s
}
section .section-title a:hover:before {
	height: 5px
}
.service-search {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 100%
}
.service-search .autocomplete-items {
	position: absolute;
	z-index: 5;
	top: 100%;
	left: 0;
	right: 0;
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.24);
	box-shadow: 0 0 15px rgba(0,0,0,0.24)
}
.service-search .autocomplete-items .autocomplete-line {
	display: block;
	padding: 15px 30px;
	cursor: pointer;
	background-color: #fff
}

@media only screen and (max-width:992px) {
.service-search .autocomplete-items .autocomplete-line {
	padding: 10px
}
}
.service-search .autocomplete-items .autocomplete-line:hover {
	text-decoration: underline
}
.service-search .autocomplete-list {
	display: none
}
.service-search .autocomplete-active {
	background-color: #b4b4b4 !important;
	color: #fff
}
.service-search .search-input {
	position: relative;
	z-index: 1;
	width: 500px;
	height: 54px;
	padding: 0 33px;
	background-color: #f0eded;
	border: none;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px
}
.service-search .search-input.active {
	background-color: #d0d0d0
}

@media only screen {
.service-search .search-input {
	width: 420px
}
}

@media only screen and (max-width:992px) {
.service-search .search-input {
	width: 340px
}
}

@media only screen and (max-width:576px) {
.service-search .search-input {
	width: calc(100% - 54px)
}
}
.service-search .search-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 54px;
	height: 54px;
	background-color: #0238c1;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px
}
.service-search .search-icon svg {
	width: 23px;
	height: 23px;
	margin: auto;
	fill: #fff
}
.breadcrumbs {
	padding: 50px 0 0 !important
}
.breadcrumbs .breadcrumbs-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.breadcrumbs .breadcrumbs-container .breadcrumb-item {
	padding: 0;
	margin-right: 30px;
	font: normal .875rem 'Montserrat-Regular', sans-serif;
	color: #888
}
.breadcrumbs .breadcrumbs-container .breadcrumb-item:before {
	display: none
}
.breadcrumbs .breadcrumbs-container a.breadcrumb-item {
	text-decoration: underline
}

@media only screen and (max-width:576px) {
.breadcrumbs .breadcrumbs-container .breadcrumb-item {
	margin-right: 15px
}
}
.services {
	padding: 40px 0
}
.services.all-services {
	padding: 60px 0 0;
	background-color: #f9f9f9
}
.services .section-header .wa-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 54px;
	width: 335px;
	margin-left: 36px;
	padding: 0;
	border: 2px solid #14a54e
}
.services .section-header .wa-btn svg {
	width: 31px;
	height: 31px;
	margin-right: 10px;
	fill: #14a54e
}
.services .section-header .wa-btn:hover {
	background-color: #14a54e;
	color: #fff
}
.services .section-header .wa-btn:hover svg {
	fill: #fff
}

@media only screen and (max-width:1200px) {
.services .section-header {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}
.services .section-header .section-title {
	width: 100%;
	margin-bottom: 30px
}
}

@media only screen and (max-width:992px) {
.services .section-header .wa-btn {
	width: 280px;
	margin-left: 15px
}
}
.services-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 60px
}

@media only screen and (max-width:576px) {
.services-wrap {
	margin-top: 20px
}
}
.services-wrap .service-block {
	width: 30%;
	margin-bottom: 30px
}
.services-wrap .service-block .service-block-head {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
.services-wrap .service-block .service-block-head .service-head-control {
	display: none;
	position: absolute;
	top: calc(50% - 8px);
	right: 15px;
	width: 18px;
	height: 18px;
	-webkit-transform-origin: center;
	transform-origin: center;
	-webkit-transition: 0.3s;
	transition: 0.3s
}
.services-wrap .service-block .service-block-head .service-head-control.color-theme-1 {
	fill: #0238c1
}
.services-wrap .service-block .service-block-head .service-head-control.color-theme-2 {
	fill: #ff7c02
}
.services-wrap .service-block .service-block-head .service-head-control.color-theme-3 {
	fill: #00c1cd
}
.services-wrap .service-block .service-block-head .service-head-control.color-theme-4 {
	fill: #08b04b
}
.services-wrap .service-block .service-block-head .service-head-control.color-theme-5 {
	fill: #ef2929
}
.services-wrap .service-block .service-block-head .service-head-control.color-theme-6 {
	fill: #828282
}
.services-wrap .service-block .service-block-head.active .service-head-control {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}
.services-wrap .service-block .service-block-head .service-block-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin-right: 8px
}
.services-wrap .service-block .service-block-head .service-block-title {
	font: bold 1.375rem 'Montserrat-SemiBold', sans-serif;
	margin: 0
}

@media only screen and (max-width:576px) {
.services-wrap .service-block .service-block-head .service-block-title {
	font-size: 1.125rem
}
}
.services-wrap .service-block .service-block-list {
	margin-top: 30px
}

@media only screen and (min-width:576px) {
.services-wrap .service-block .service-block-list {
	display: block !important
}
}

@media only screen and (max-width:992px) {
.services-wrap .service-block {
	width: 45%;
	margin-right: 30px
}
.services-wrap .service-block:nth-child(2n) {
	margin-right: 0
}
}

@media only screen and (max-width:576px) {
.services-wrap .service-block {
	width: 100%;
	margin: 0;
	margin-top: -1px
}
.services-wrap .service-block .service-block-head {
	padding: 15px;
	margin-left: -15px;
	margin-right: -15px;
	border: 1px solid #b4b4b4;
	border-left: none;
	border-right: none
}
.services-wrap .service-block .service-block-head .service-head-control {
	display: block
}
.services-wrap .service-block .service-block-list {
	display: none
}
}
.services-wrap .service-list-item {
	position: relative;
	margin-bottom: 25px
}
.services-wrap .service-list-item span {
	display: inline;
	position: relative
}
.services-wrap .service-list-item span:before {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 3px;
	background-color: #0238c1;
	border-radius: 10px;
	-webkit-transition: 0.3s 0.15s;
	transition: 0.3s 0.15s
}
.services-wrap .service-list-item:hover span:before {
	width: 100%
}
hr {
	margin: 0
}
.advantages {
	padding: 30px 0 60px
}
.advantages.inner-page {
	padding: 60px 0;
	background-color: #f9f9f9
}

@media only screen and (max-width:576px) {
.advantages {
	padding-bottom: 30px
}
.advantages.inner-page {
	padding: 30px 0
}
}
.advantages-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}
.advantages-wrapper .advantages-item {
	width: 210px;
	margin-right: 35px;
	margin-bottom: 30px
}

@media only screen and (max-width:576px) {
.advantages-wrapper .advantages-item {
	width: 45%;
	margin-right: 15px
}
.advantages-wrapper .advantages-item:nth-child(2n) {
	margin-right: 0
}
}
.advantages-wrapper .advantages-item .advantage-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 15px
}
.advantages-wrapper .advantages-item .advantage-title {
	font: bold 1.125rem 'Montserrat-SemiBold', sans-serif
}
.about {
	background-color: #f9f9f9
}
.about-gallery {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 30px
}
.about-gallery .about-image {
	margin-bottom: 30px
}
.about-gallery .big-image {
	width: 100%
}
.about-gallery .small-image {
	width: calc(50% - 15px)
}

@media only screen and (max-width:576px) {
.about-gallery .small-image {
	width: 100%
}
}
.about-numbers {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}
.about-numbers .about-number-item {
	max-width: calc(33% - 15px)
}
.about-numbers .about-number-item .number-block {
	font: bold 5rem 'Montserrat-SemiBold', sans-serif;
	color: #0238c1
}

@media only screen and (max-width:1600px) {
.about-numbers .about-number-item .number-block {
	font-size: 3.5rem
}
}
.about-numbers .about-number-item .number-text {
	font: bold 1.375rem 'Montserrat-SemiBold', sans-serif
}

@media only screen and (max-width:1200px) {
.about-numbers .about-number-item {
	max-width: calc(50% - 15px)
}
}

@media only screen and (max-width:992px) {
.about-numbers .about-number-item .number-block {
	font-size: 2.875rem
}
.about-numbers .about-number-item .number-text {
	font-size: 1.125rem
}
}

@media only screen and (max-width:768px) {
.about-numbers .about-number-item {
	max-width: 100%;
	margin-bottom: 20px
}
.about-numbers .about-number-item .number-block {
	font-size: 3.75rem
}
.about-numbers .about-number-item .number-text {
	font-size: 1.375rem
}
}
.about-map {
	position: relative
}
.about-map .map-text {
	position: absolute;
	left: 5px;
	bottom: 5px;
	z-index: 1;
	width: 180px;
	font: normal 1.125rem 'Montserrat-Regular', sans-serif
}
.about-map .map-text .map-text-icon {
	display: block;
	width: 63px;
	height: 63px
}
.about-map .map-text .map-text-text {
	margin-top: 5px
}
.about-map-desc {
	margin-top: 30px;
	font: normal .9375rem 'Montserrat-Regular', sans-serif
}
.about-map-desc strong {
	display: block;
	font: bold 1.375rem 'Montserrat-SemiBold', sans-serif
}
.team .team-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 286px;
	height: 54px;
	margin: auto 0;
	font-size: 1.125rem
}
.team .team-wrapper {
	margin-top: 41px
}
.team .team-wrapper .team-item {
	height: 100%;
	margin-bottom: 30px
}
.team .team-wrapper .team-item .team-img {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 380px
}
.team .team-wrapper .team-item .team-img img {
	height: 100%;
	width: auto;
	margin: 0 auto
}
.team .team-wrapper .team-item .team-img .team-icon {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	width: 30px;
	height: 30px
}

@media only screen and (max-width:1600px) {
.team .team-wrapper .team-item .team-img {
	height: 305px
}
}

@media only screen and (max-width:1200px) {
.team .team-wrapper .team-item .team-img {
	height: 250px
}
}

@media only screen and (max-width:992px) {
.team .team-wrapper .team-item .team-img {
	height: 400px
}
}

@media only screen and (max-width:768px) {
.team .team-wrapper .team-item .team-img {
	height: 290px
}
}

@media only screen and (max-width:576px) {
.team .team-wrapper .team-item .team-img {
	height: 350px;
	width: 290px
}
}
.team .team-wrapper .team-item .team-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: calc(100% - 380px);
	padding-top: 16px
}
.team .team-wrapper .team-item .team-info .team-title {
	font: bold 1.375rem 'Montserrat-SemiBold', sans-serif
}
.team .team-wrapper .team-item .team-info .team-text {
	margin: 10px 0;
	font: normal .9375rem 'Montserrat-Regular', sans-serif
}
.team .team-wrapper .team-item .team-info .team-cert {
	margin-top: auto;
	font: normal .9375rem 'Montserrat-Regular', sans-serif;
	text-decoration: underline;
	-webkit-transition: 0.3s;
	transition: 0.3s
}
.team .team-wrapper .team-item .team-info .team-cert:hover {
	font-weight: bold
}
.steps {
	background-color: #f9f9f9;
	padding-bottom: 30px
}
.steps .steps-wrapper {
	margin-top: 40px
}
.steps .step-item {
	margin-bottom: 64px
}

@media only screen and (max-width:768px) {
.steps .step-item {
	margin-bottom: 30px
}
}
.steps .step-item .step-label {
	position: relative;
	width: 133px;
	height: 82px;
	border-radius: 4px;
	background-color: #e7e7e7
}
.steps .step-item .step-label .step-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 18px;
	width: 48px;
	height: 48px;
	margin: auto 0
}
.steps .step-item .step-label .step-icon svg {
	width: 100%;
	height: 100%
}
.steps .step-item .step-label .step-number {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 62px;
	height: 42px;
	padding: 5px;
	background: url("../images/svg/step-bg-def.svg") no-repeat center;
	background-size: contain;
	font: bold 2.5rem/34px 'Montserrat-SemiBold', sans-serif;
	color: #fff
}
.steps .step-item .step-label .step-number.step-bg-1 {
	background: url("../images/svg/step-bg-1.svg") no-repeat center;
	background-size: contain
}
.steps .step-item .step-label .step-number.step-bg-2 {
	background: url("../images/svg/step-bg-2.svg") no-repeat center;
	background-size: contain
}
.steps .step-item .step-label .step-number.step-bg-3 {
	background: url("../images/svg/step-bg-3.svg") no-repeat center;
	background-size: contain
}
.steps .step-item .step-label .step-number.step-bg-5 {
	background: url("../images/svg/step-bg-1.svg") no-repeat center;
	background-size: contain
}
.steps .step-item .step-label .step-number.step-bg-4 {
	background: url("../images/svg/step-bg-2.svg") no-repeat center;
	background-size: contain
}
.steps .step-item .step-title {
	margin: 8px 0;
	font: bold 1.375rem 'Montserrat-SemiBold', sans-serif
}
.steps .step-item .step-text {
	font: normal .9375rem 'Montserrat-Regular', sans-serif
}
.steps.inner-page {
	padding: 30px 0;
	background-color: #f9f9f9
}
.steps.inner-page .step-label {
	background-color: transparent
}
.steps.inner-page .step-label .step-icon {
	display: none
}
.partners {
	overflow: hidden
}
.partners .partner-wrapper {
	margin-top: 30px
}
.partners .partner-wrapper .partner-quote {
	padding: 35px 45px;
	background-color: #f9f9f9
}
.partners .partner-wrapper .partner-quote blockquote {
	padding: 20px 55px;
	padding-right: 0;
	margin: 0;
	font: bold 1.375rem 'Montserrat-SemiBold', sans-serif;
	background: url("../images/svg/quotes.svg") no-repeat 0% 0%;
	background-size: 38px
}
.partners .partner-wrapper .partner-quote blockquote span {
	margin: 0 5px;
	color: #0238c1
}

@media only screen and (max-width:576px) {
.partners .partner-wrapper .partner-quote {
	padding: 15px
}
.partners .partner-wrapper .partner-quote blockquote {
	padding: 30px;
	font-size: 1rem;
	background-size: 25px
}
}
.partners .partners-swiper {
	margin-top: 30px;
	overflow: hidden
}
.partners .partners-swiper .partner-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 150px
}
.partners .partners-swiper .partner-slide img {
	width: auto;
	max-height: 150px;
	max-width: 100%
}
.swiper-controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 21px
}
.swiper-controls .swiper-control {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background-color: transparent;
	border: 1px solid #0238c1;
	border-radius: 50%;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	cursor: pointer
}
.swiper-controls .swiper-control svg {
	width: 20px;
	height: 20px;
	fill: #0c0c0c
}
.swiper-controls .swiper-control.control-prev {
	margin-right: 6px;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}
.swiper-controls .swiper-control:hover {
	background-color: #0238c1
}
.swiper-controls .swiper-control:hover svg {
	fill: #fff
}
.footer {
	background-color: #0c0c0c;
	font: normal 1rem 'Montserrat-Regular', sans-serif;
	color: #fff
}
.footer .footer-container {
	padding: 30px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

@media only screen and (max-width:992px) {
.footer .footer-container {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end
}
}
.footer .footer-container .footer-logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
.footer .footer-container .footer-logo img {
	width: 200px;
	height: auto
}
.footer .footer-container .footer-logo .footer-text {
	line-height: 1.25rem
}

@media only screen and (max-width:1200px) {
.footer .footer-container .footer-logo {
	display: block
}
.footer .footer-container .footer-logo .footer-text {
	margin-top: 15px
}
}

@media only screen and (max-width:992px) {
.footer .footer-container .footer-logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 15px
}
.footer .footer-container .footer-logo img {
	width: 150px
}
.footer .footer-container .footer-logo .footer-text {
	margin-left: 15px
}
}
.footer .footer-container .footer-link {
	text-decoration: underline
}
.footer .footer-container .contact-block {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start
}

@media only screen and (max-width:1200px) {
.footer .footer-container .contact-block {
	margin-top: 15px
}
}
.footer .footer-container .footer-navigation {
	width: 700px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

@media only screen and (max-width:1200px) {
.footer .footer-container .footer-navigation {
	width: 370px
}
}

@media only screen and (max-width:992px) {
.footer .footer-container .footer-navigation {
	width: 100%;
	margin-top: 30px
}
}

@media only screen and (max-width:576px) {
.footer .footer-container .footer-navigation {
	display: block
}
}
.footer .footer-container .footer-navigation .f-navigation-item {
	position: relative;
	font-size: 1.125rem;
	line-height: 1.625rem
}

@media only screen and (max-width:576px) {
.footer .footer-container .footer-navigation .f-navigation-item {
	margin-top: 15px
}
.footer .footer-container .footer-navigation .f-navigation-item:first-child {
	margin-top: 0
}
}
.footer .footer-container .footer-navigation .f-navigation-item:before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	height: 2px;
	width: 0;
	background-color: #fff;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	opacity: 0
}
.footer .footer-container .footer-navigation .f-navigation-item:hover:before {
	width: 100%;
	opacity: 1
}
hr.horizontal-line {
	width: 100%;
	height: 1px;
	background-color: #fff;
	opacity: .1
}
hr.horizontal-line.grey-line {
	background-color: #dcdcdc
}
.credits {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-negative: 0;
	flex-shrink: 0
}
.credits .credit-block {
	font: normal 1rem 'Montserrat-Regular', sans-serif
}
.credits .credit-block a {
	display: inline;
	margin: 0 5px;
	text-decoration: underline
}

@media only screen and (max-width:1200px) {
.credits {
	display: block
}
.credits .credit-block {
	margin-top: 15px
}
}
.modals {
	display: none
}
.modal-window {
	width: 1380px;
	max-width: 100%;
	padding: 140px 15px;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 24px rgba(0,0,0,0.2);
	box-shadow: 0 0 24px rgba(0,0,0,0.2)
}
.modal-window .modal-title {
	font: bold 4rem 'Raleway-SemiBold', sans-serif;
	text-align: center;
	letter-spacing: -2px
}
.modal-window .modal-text {
	margin-top: 30px
}
.modal-window .modal-text p {
	margin-bottom: 15px
}
.modal-window .modal-text ul {
	margin-bottom: 15px;
	padding-left: 25px;
	list-style: none
}
.modal-window .modal-text ul li {
	position: relative;
	margin-bottom: 10px
}
.modal-window .modal-text ul li:before {
	content: '';
	position: absolute;
	left: -25px;
	top: 5px;
	width: 7px;
	height: 7px;
	background-color: #19c82a;
	border-radius: 50%
}

@media only screen and (max-width:992px) {
.modal-window .modal-title {
	font-size: 2.875rem
}
}

@media only screen and (max-width:576px) {
.modal-window {
	padding: 30px 15px
}
.modal-window .modal-title {
	font-size: 2rem
}
}
.form.modal-form {
	width: 338px;
	margin: 30px auto 0
}

@media only screen and (max-width:576px) {
.form.modal-form {
	max-width: 100%
}
}
.form .form-title {
	font: bold 2rem 'Montserrat-SemiBold', sans-serif
}

@media only screen and (max-width:1600px) {
.form .form-title {
	font-size: 1.625rem
}
}
.form .form-text {
	font: bold 1.125rem 'Montserrat-SemiBold', sans-serif
}

@media only screen and (max-width:768px) {
.form .form-text {
	font-size: 1rem
}
}
.form .input-group {
	display: block;
	margin-top: 20px
}
.form .label-style {
	display: block;
	margin-bottom: 5px;
	font: bold 1rem 'Montserrat-SemiBold', sans-serif
}
.form .input-style {
	display: block;
	height: 50px;
	width: 100%;
	padding-left: 15px;
	font: normal .875rem 'Montserrat-Medium', sans-serif;
	background: none;
	border: 1px solid #e5e5e5;
	border-radius: 6px
}
.form .input-style::-webkit-input-placeholder {
font:normal .875rem/48px 'Montserrat-Medium', sans-serif;
color:#818181
}
.form .input-style::-moz-placeholder {
font:normal .875rem/48px 'Montserrat-Medium', sans-serif;
color:#818181
}
.form .input-style:-ms-input-placeholder {
font:normal .875rem/48px 'Montserrat-Medium', sans-serif;
color:#818181
}
.form .input-style::-ms-input-placeholder {
font:normal .875rem/48px 'Montserrat-Medium', sans-serif;
color:#818181
}
.form .input-style::placeholder {
font:normal .875rem/48px 'Montserrat-Medium', sans-serif;
color:#818181
}
.form .input-style.files-input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 30px;
	font: bold 1.125rem 'Montserrat-SemiBold', sans-serif;
	border: 1px dashed #b4b4b4;
	cursor: pointer;
	-webkit-transition: 0.3s background-color;
	transition: 0.3s background-color
}
.form .input-style.files-input .files-icon {
	width: 23px;
	height: 23px;
	fill: #0c0c0c
}
.form .input-style.files-input.active, .form .input-style.files-input:hover {
	background-color: #b4b4b4;
	color: #fff;
	border: 1px solid #b4b4b4
}
.form .input-style.files-input.active .files-icon, .form .input-style.files-input:hover .files-icon {
	fill: #fff
}
.form .input-style.textarea-style {
	height: 211px;
	padding: 15px;
	resize: none
}
.form .input-style.textarea-style::-webkit-input-placeholder {
font:normal .875rem 'Montserrat-Medium', sans-serif;
color:#818181
}
.form .input-style.textarea-style::-moz-placeholder {
font:normal .875rem 'Montserrat-Medium', sans-serif;
color:#818181
}
.form .input-style.textarea-style:-ms-input-placeholder {
font:normal .875rem 'Montserrat-Medium', sans-serif;
color:#818181
}
.form .input-style.textarea-style::-ms-input-placeholder {
font:normal .875rem 'Montserrat-Medium', sans-serif;
color:#818181
}
.form .input-style.textarea-style::placeholder {
font:normal .875rem 'Montserrat-Medium', sans-serif;
color:#818181
}

@media only screen and (max-width:576px) {
.form .input-style.textarea-style {
	height: 130px
}
}
.form .submit-btn {
	display: block;
	height: 50px;
	width: 100%;
	padding-left: 30px;
	font: normal 1.125rem/48px 'Montserrat-Medium', sans-serif;
	text-align: left;
	background: url("../images/svg/arrow-right.svg") no-repeat 90% 50% #0238c1;
	background-size: 25px
}
.privacy-text {
	margin-top: 10px;
	font: normal .875rem 'Montserrat-Regular', sans-serif;
	text-align: left
}
.privacy-text a {
	display: inline;
	margin: 0 5px;
	text-decoration: underline
}

@media only screen and (max-width:768px) {
.privacy-text a {
	display: block
}
}
.vacancies-list {
	margin-top: 30px
}
.vacancies-list .vacancy-block {
	position: relative;
	height: calc(100% - 30px);
	padding: 30px;
	margin-bottom: 30px;
	padding-bottom: 60px;
	background-color: #fff;
	border: 1px solid #b4b4b4;
	border-radius: 4px;
	overflow: hidden;
	-webkit-transition: 0.3s;
	transition: 0.3s
}

@media only screen and (max-width:768px) {
.vacancies-list .vacancy-block {
	padding: 30px 15px
}
}
.vacancies-list .vacancy-block .vacancy-title {
	font: bold 1.25rem "Montserrat-SemiBold", sans-serif
}
.vacancies-list .vacancy-block .vacancy-money {
	margin-top: 10px;
	font: bold 1.25rem "Montserrat-SemiBold", sans-serif;
	color: #0238c1
}
.vacancies-list .vacancy-block .vacancy-text {
	margin-top: 15px;
	font: normal 1rem "Montserrat-Regular", sans-serif
}
.vacancies-list .vacancy-block .vacancy-text strong {
	font: bold 1rem "Montserrat-SemiBold", sans-serif;
	line-height: 1.625rem
}
.vacancies-list .vacancy-block .vacancy-text ul {
	padding: 0;
	list-style: none
}
.vacancies-list .vacancy-block .vacancy-text ul li {
	margin-top: 5px
}
.vacancies-list .vacancy-block .vacancy-text ul li:before {
	content: '- ';
	font: normal 1rem "Montserrat-Regular", sans-serif
}
.vacancies-list .vacancy-block .vacancy-btn {
	position: absolute;
	bottom: 0;
	left: 0;
	display: none;
	opacity: 0;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: calc(100% + 2px);
	padding: 15px 30px;
	margin: -1px;
	font: bold 1.125rem "Montserrat-SemiBold", sans-serif;
	background-color: #eee;
	border: 1px solid #d6d6d6;
	border-radius: 4px
}
.vacancies-list .vacancy-block .vacancy-btn .slide-icon {
	width: 16px;
	height: 16px;
	fill: #0c0c0c;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	-webkit-transform-origin: center;
	transform-origin: center;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}
.vacancies-list .vacancy-block.closed {
	height: 650px
}

@media only screen and (max-width:1600px) {
.vacancies-list .vacancy-block.closed {
	height: 710px
}
}

@media only screen and (max-width:1200px) {
.vacancies-list .vacancy-block.closed {
	height: 400px
}
}

@media only screen and (max-width:992px) {
.vacancies-list .vacancy-block.closed {
	height: 300px
}
}
.vacancies-list .vacancy-block.closed .vacancy-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	opacity: 1
}
.vacancies-list .vacancy-block.closed .vacancy-btn .slide-icon {
	fill: #0238c1;
	-webkit-transform: rotate(0);
	transform: rotate(0)
}
.form-inner {
	padding: 30px;
	padding-bottom: 45px;
	background-color: #fff;
	border: 1px solid #b4b4b4;
	border-radius: 4px
}

@media only screen and (max-width:768px) {
.form-inner {
	padding: 30px 15px
}
}
.showHere {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 5px
}
.showHere .attach-file-delete {
	cursor: pointer
}
.showHere .attach-file {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 80px;
	height: 140px;
	margin-right: 5px;
	overflow: hidden
}
.showHere .attach-file img {
	height: calc(100% - 30px);
	width: auto
}
.faq .faq-block {
	margin-bottom: 15px
}
.faq .faq-block .faq-question {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px 36px;
	font: bold 1.25rem "Montserrat-SemiBold", sans-serif;
	border: 1px solid #d6d6d6;
	border-radius: 4px;
	background-color: #fff;
	cursor: pointer
}

@media only screen and (max-width:1600px) {
.faq .faq-block .faq-question {
	font-size: 1.125rem
}
}

@media only screen and (max-width:576px) {
.faq .faq-block .faq-question {
	padding: 15px
}
}
.faq .faq-block .faq-question .faq-icon {
	width: 16px;
	height: 16px;
	-webkit-transform-origin: center;
	transform-origin: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	fill: #000
}

@media only screen and (max-width:768px) {
.faq .faq-block .faq-question .faq-icon {
	-ms-flex-negative: 0;
	flex-shrink: 0
}
}
.faq .faq-block .faq-question.open {
	background-color: #f9f9f9
}
.faq .faq-block .faq-question.open .faq-icon {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}
.faq .faq-block .faq-answer {
	display: none;
	margin-top: -1px;
	padding: 25px 36px;
	font: normal 1.125rem "Montserrat-Regular", sans-serif;
	background-color: #fff;
	border-radius: 4px
}

@media only screen and (max-width:1600px) {
.faq .faq-block .faq-answer {
	font-size: 1rem
}
}
.faq .faq-block .faq-answer p {
	margin-bottom: 15px
}
.contacts-wrapper .contact-us {
	margin-bottom: 20px;
	font: bold 2rem "Montserrat-SemiBold", sans-serif
}

@media only screen and (max-width:768px) {
.contacts-wrapper .contact-us {
	font-size: 1.625rem
}
}
.contact-card {
	width: 100%;
	padding: 30px;
	margin-bottom: 30px;
	background-color: #fff;
	border: 1px solid #b4b4b4;
	border-radius: 4px
}

@media only screen and (max-width:576px) {
.contact-card {
	padding: 15px
}
}
.contact-card .card-label {
	margin-top: 15px;
	font: normal 1.125rem "Montserrat-Regular", sans-serif
}

@media only screen and (max-width:576px) {
.contact-card .card-label {
	font-size: 1rem;
	margin-top: 5px
}
}
.contact-card .card-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
.contact-card .card-info .card-icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 31px;
	height: 31px;
	margin-right: 10px
}
.contact-card .card-info .card-text {
	font: bold 1.375rem "Montserrat-SemiBold", sans-serif
}

@media only screen and (max-width:576px) {
.contact-card .card-info .card-text {
	font-size: 1rem
}
}
.contact-card .card-info:hover .card-icon {
	-webkit-transform: scale(1.1);
	transform: scale(1.1)
}
svg {
	-webkit-transition: 0.3s;
	transition: 0.3s
}
svg.fill-blue {
	fill: #0238c1
}
svg.fill-green {
	fill: #19c82a
}
.calculator .calc-title {
	margin-bottom: 15px;
	font: bold 2rem "Montserrat-SemiBold", sans-serif
}

@media only screen and (max-width:992px) {
.calculator .calc-title {
	font-size: 1.125rem
}
}
.calculator .calc-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.calculator .calc-info .calc-text {
	margin-right: 90px;
	font: normal 1.125rem/1.5 "Montserrat-Regular", sans-serif
}
.calculator .calc-info .calc-text p {
	margin-bottom: 30px
}
.calculator .calc-info .calc-text a {
	text-decoration: underline
}
.calculator .calc-info .calc-icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 300px
}
.calculator .calc-info .calc-icon img {
	display: block;
	width: 185px
}
.calculator .calc-info .calc-icon strong {
	margin: 0 5px
}

@media only screen and (max-width:992px) {
.calculator .calc-info {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}
.calculator .calc-info .calc-text {
	margin-right: 15px;
	font-size: 1rem
}
.calculator .calc-info .calc-icon {
	width: 150px
}
.calculator .calc-info .calc-icon img {
	width: 100px
}
}
.calc-width {
	width: 1143px;
	max-width: 100%
}
.calc-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 35px;
	padding: 35px 50px 65px;
	background-color: #fff
}

@media only screen and (max-width:992px) {
.calc-block {
	padding: 45px 30px
}
}
.calc-block .calc-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 435px;
	height: 100%
}

@media only screen and (max-width:992px) {
.calc-block .calc-column {
	width: 100%
}
}
.calc-block .calc-column .calc-group {
	margin-bottom: 32px
}
.calc-block .calc-column .calc-group:first-child {
	margin-top: 0
}
.calc-block .calc-label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font: bold 1.25rem "Montserrat-SemiBold", sans-serif
}
.calc-block .calc-label .label-output {
	font: bold 1.375rem "Montserrat-Bold", sans-serif;
	color: #0238c1
}
.calc-block .calc-input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}
.calc-block .calc-input .service-search {
	width: 100%
}
.calc-block .calc-input .service-search .search-input {
	width: 100%
}
.calc-block .calc-input .calc-message {
	height: 90px
}
.calc-block .calc-input .calc-result {
	margin-top: 5px;
	font: bold 2rem "Montserrat-SemiBold", sans-serif
}
.calc-block .calc-input .calc-result.monthly {
	font: bold 3.75rem "Montserrat-SemiBold", sans-serif;
	color: #0238c1
}

@media only screen and (max-width:768px) {
.calc-block .calc-input .calc-result.monthly {
	font-size: 2.625rem
}
}
.calc-block .calc-input .slider-wrapper {
	width: 100%;
	height: 6px;
	margin: 15px 0;
	background-color: #dcdcdc;
	border-radius: 5px;
	border: none
}
.calc-block .calc-input .slider-wrapper .ui-state-default {
	top: -10px;
	width: 24px;
	height: 24px;
	background-color: #0238c1;
	border-radius: 50%
}
.calc-block .calc-input .slider-label {
	font: normal 1.125rem "Montserrat-Medium", sans-serif;
	color: #818181
}
.calc-block .calc-input span {
	display: inline-block;
	margin-right: 5px
}
.dropdown-wrapper {
	position: relative
}
.dropdown-wrapper .dropdown-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 54px;
	width: 318px;
	max-width: 100%;
	font: bold 1.125rem "Montserrat-SemiBold", sans-serif;
	border: 2px solid #0238c1;
	border-radius: 4px;
	padding: 10px 18px;
	cursor: pointer;
	-webkit-transition: 0.15s;
	transition: 0.15s
}
.dropdown-wrapper .dropdown-btn .dropdown-icon {
	width: 25px;
	height: 25px;
	fill: #0238c1
}

@media only screen and (max-width:768px) {
.dropdown-wrapper .dropdown-btn {
	width: 290px
}
}
.dropdown-wrapper .dropdown-btn:hover {
	background-color: #0238c1;
	color: #fff
}
.dropdown-wrapper .dropdown-btn:hover .dropdown-icon {
	fill: #fff
}
.dropdown-wrapper .dropdown-btn:active {
	-webkit-transform: scale(.975);
	transform: scale(.975)
}
.dropdown-wrapper .dropdown-list {
	position: absolute;
	top: calc(100% + 5px);
	left: 0;
	z-index: 5;
	width: 100%;
	height: 500px;
	display: none;
	margin-top: 5px;
	padding: 15px 0;
	border-radius: 5px;
	background-color: #fff;
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.25);
	box-shadow: 0 0 15px rgba(0,0,0,0.25);
	overflow-y: scroll
}
.dropdown-wrapper .dropdown-list .dropdown-item {
	padding: 10px 20px;
	font: normal 1.125rem "Montserrat-Regular", sans-serif;
	white-space: unset
}
.dropdown-wrapper .dropdown-list .dropdown-item:active {
	background-color: #f9f9f9
}

@media only screen and (max-width:576px) {
.dropdown-wrapper .dropdown-list {
	width: 290px
}
}
.service-page {
	padding-bottom: 50px !important
}

@media only screen and (max-width:992px) {
.service-page .section-header {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse
}
}
.service-page .section-header .services-dropdown {
	position: absolute;
	top: -50px;
	right: 0
}

@media only screen and (max-width:992px) {
.service-page .section-header .services-dropdown {
	position: relative;
	top: 0
}
}
.service-page .section-header .service-title {
	margin: 0 auto;
	font: bold 4rem "Montserrat-SemiBold", sans-serif;
	text-align: center
}

@media only screen and (max-width:1600px) {
.service-page .section-header .service-title {
	font-size: 3.25rem
}
}
.service-page .section-header .service-title .service-icon {
	width: 55px;
	height: 55px;
	margin: 0 auto;
	margin-bottom: 5px
}

@media only screen and (max-width:992px) {
.service-page .section-header .service-title {
	font: bold 2.875rem "Montserrat-SemiBold", sans-serif
}
}

@media only screen and (max-width:768px) {
.service-page .section-header .service-title {
	margin-top: 30px;
	font: bold 1.875rem "Montserrat-SemiBold", sans-serif
}
.service-page .section-header .service-title .service-icon {
	width: 33px;
	height: 33px
}
}

@media only screen and (max-width:576px) {
.service-page .section-header .service-title {
	font-size: 1.75rem
}
}
.service-page .service-content {
	margin-top: 40px
}
.service-page .service-image {
	position: relative
}

@media only screen and (max-width:1200px) {
.service-page .service-image {
	margin-bottom: 30px
}
}
.service-page .service-image:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 50%;
	background: #020024;
	background: -webkit-gradient(linear, left top, right top, from(rgba(2,0,36,0)), to(#f9f9f9));
	background: linear-gradient(90deg, rgba(2,0,36,0) 0%, #f9f9f9 100%)
}
.service-page .service-btn {
	width: 366px;
	height: 60px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 15px 30px;
	margin-top: 30px;
	font-size: 1.125rem
}
.open-text {
	position: absolute;
	bottom: 0;
	left: 0;
	display: none;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 60px;
	width: 100%;
	padding: 15px 25px;
	margin-top: 25px;
	font: bold 1.125rem "Montserrat-SemiBold", sans-serif;
	background-color: #dedede;
	border: 1px solid #dedede;
	border-radius: 4px
}
.open-text svg {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	fill: #0c0c0c
}
.service-text {
	position: relative;
	font: normal 1.125rem "Montserrat-Regular", sans-serif
}

@media only screen and (max-width:1600px) {
.service-text {
	font-size: 1rem
}
}
.service-text strong {
	font: bold 1.125rem "Montserrat-SemiBold", sans-serif
}
.service-text h3 {
	font: bold 2rem "Montserrat-SemiBold", sans-serif
}

@media only screen and (max-width:1600px) {
.service-text h3 {
	font-size: 1.625rem
}
}

@media only screen and (max-width:576px) {
.service-text.closed {
	height: 210px;
	overflow: hidden
}
.service-text.closed .open-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
}
.reports {
	background-color: #f9f9f9;
	padding: 30px 0;
	overflow: hidden
}
.reports .report-block {
	margin-bottom: 50px
}
.reports .report-block:last-child {
	margin-bottom: 0
}

@media only screen and (max-width:576px) {
.reports .report-block {
	margin-bottom: 30px
}
}
.reports .report-label {
	display: inline-block;
	height: 35px;
	padding: 0 30px;
	margin-top: 25px;
	margin-bottom: 15px;
	font: normal 1.375rem/31px "Montserrat-Medium", sans-serif;
	text-transform: uppercase;
	border-radius: 30px;
	border: 2px solid #0238c1;
	background-color: #0238c1;
	color: #fff
}
.reports .report-gallery {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column wrap;
	flex-flow: column wrap;
	-ms-flex-line-pack: start;
	align-content: flex-start;
	height: 450px
}

@media only screen and (max-width:1200px) {
.reports .report-gallery {
	height: auto;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row
}
}
.reports .report-gallery .gallery-item {
	position: relative;
	margin-bottom: 21px;
	margin-right: 30px
}

@media only screen and (max-width:1200px) {
.reports .report-gallery .gallery-item {
	margin-bottom: 30px
}
}

@media only screen and (max-width:576px) {
.reports .report-gallery .gallery-item {
	margin-right: 0
}
}
.reports .report-gallery .gallery-item.video-item {
	position: relative
}
.reports .report-gallery .gallery-item.video-item:before {
	content: '';
	position: absolute;
	width: 45px;
	height: 45px;
	top: 50%;
	left: 50%;
	background: url("../images/svg/play-button.svg") no-repeat center;
	background-size: contain;
	-webkit-transform-origin: center;
	transform-origin: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	-webkit-transform: translate3d(-50%, -50%, 0) scale(1);
	transform: translate3d(-50%, -50%, 0) scale(1)
}
.reports .report-gallery .gallery-item.video-item:hover:before {
	-webkit-transform: translate3d(-50%, -50%, 0) scale(1.3);
	transform: translate3d(-50%, -50%, 0) scale(1.3)
}

@media only screen and (max-width:768px) {
.reports .report-gallery .gallery-item.video-item:before {
	width: 50px;
	height: 50px
}
}
.reports .report-gallery .gallery-item.big-image {
	width: 533px
}
.reports .report-gallery .gallery-item.big-image.video-item:before {
	width: 107px;
	height: 107px
}

@media only screen and (max-width:1600px) {
.reports .report-gallery .gallery-item.big-image {
	width: 493px
}
}

@media only screen and (max-width:1200px) {
.reports .report-gallery .gallery-item.big-image {
	width: 750px
}
}

@media only screen and (max-width:992px) {
.reports .report-gallery .gallery-item.big-image {
	width: calc(100% - 30px)
}
}

@media only screen and (max-width:576px) {
.reports .report-gallery .gallery-item.big-image {
	width: 100%
}
}
.reports .report-gallery .gallery-item.small-image {
	width: 252px
}

@media only screen and (max-width:1600px) {
.reports .report-gallery .gallery-item.small-image {
	width: 230px
}
}

@media only screen and (max-width:992px) {
.reports .report-gallery .gallery-item.small-image {
	width: calc(50% - 30px)
}
}

@media only screen and (max-width:576px) {
.reports .report-gallery .gallery-item.small-image {
	width: 100%
}
}
.reports .report-text {
	font: normal .9375rem "Montserrat-Regular", sans-serif
}
.reports .report-text strong {
	font: bold .9375rem "Montserrat-SemiBold", sans-serif
}
.reports .report-text h3 {
	font: bold 1.375rem "Montserrat-SemiBold", sans-serif
}
.prices {
	background-color: #f9f9f9;
	padding: 30px 0
}

@media only screen and (max-width:992px) {
.prices .prices-content {
	margin-bottom: 30px
}
}

@media only screen and (max-width:768px) {
.prices .prices-content {
	overflow: scroll
}
}
.prices .prices-content table {
	width: 100%
}
.prices .prices-content table td {
	padding: 15px;
	margin-top: -1px;
	margin-left: -1px;
	border: 1px solid #c8c8c8;
	border-radius: 2px
}
.prices .prices-content table tbody tr:first-child td {
	border-top: 6px solid #0238c1;
	font: bold 1.125rem "Montserrat-SemiBold", sans-serif
}
.prices .prices-content table tbody tr td {
	font: normal 1rem "Montserrat-Regular", sans-serif
}
.prices .prices-content table tbody tr td:last-child {
	font: normal 1rem "Montserrat-Medium", sans-serif
}
.prices .prices-content table thead tr td {
	border-top: 6px solid #0238c1;
	font: bold 1.125rem "Montserrat-SemiBold", sans-serif
}
.prices .prices-content table thead ~ tbody tr:first-child td {
	border-top: none;
	font: normal 1rem "Montserrat-Regular", sans-serif
}
.jGrowl-message {
	color: #000 !important
}
/*# sourceMappingURL=common.min.css.map */
